home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 1999 #5 / 1999 CD 5 (black).iso / Delphi3 / install / data.z / DBINPREQ.INT < prev    next >
Encoding:
Text File  |  1997-08-05  |  1.0 KB  |  37 lines

  1.  
  2. {*******************************************************}
  3. {                                                       }
  4. {       Delphi Visual Component Library                 }
  5. {                                                       }
  6. {       Copyright (c) 1996,97 Borland International     }
  7. {                                                       }
  8. {*******************************************************}
  9.  
  10. unit DBInpReq;
  11.  
  12. {$R-}
  13.  
  14. interface
  15.  
  16. uses Windows, Classes, SysUtils, Forms, Controls, StdCtrls, ExtCtrls,
  17.   BDE, Dialogs;
  18.  
  19. type
  20.   TInputReqDialog = class(TForm)
  21.     OKButton: TButton;
  22.     CancelButton: TButton;
  23.     InputOptions: TPanel;
  24.     NoPromptAgain: TCheckBox;
  25.     ErrorHelp: TLabel;
  26.     InputMessage: TLabel;
  27.     ErrorGroupBox: TPanel;
  28.     ErrorGoupBoxSpacer: TPanel;
  29.     DescriptionGroupBox: TPanel;
  30.     DescriptionGroupBoxSpacer: TPanel;
  31.     procedure InputOptionsClick(Sender: TObject);
  32.   end;
  33.  
  34. function InputRequest(var InputReqInfo: CBInputDesc): CBRType;
  35.  
  36. implementation
  37.